home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / CUGUK / COMMS / C101.ZIP / UUPC11XS.ZIP / UUCICO / ULIB.H < prev    next >
C/C++ Source or Header  |  1992-11-12  |  555b  |  29 lines

  1. /*
  2.    ulib.h
  3. */
  4.  
  5.  
  6. extern boolean port_active;         /* Port active flag for error handler   */
  7.  
  8. extern int openline(char *name, BPS baud, const boolean direct);
  9.  
  10. extern unsigned int sread(char *buffer,
  11.                           unsigned int wanted,
  12.                           unsigned int timeout);
  13.  
  14. int swrite(char *data, unsigned int len);
  15.  
  16. void ssendbrk(unsigned int duration);
  17.  
  18. void closeline(void);
  19.  
  20. void SIOSpeed(BPS baud);
  21.  
  22. void flowcontrol( boolean );
  23.  
  24. void hangup( void );
  25.  
  26. BPS GetSpeed( void );
  27.  
  28. boolean CD( void );
  29.